www.gusucode.com > wxApp PHP版微信小程序CMS系统 v1.0PHP源码程序 > wxApp PHP版微信小程序CMS系统 v1.0/wxAppCMS_v1.0.0/wxAppCMS_v1.0.0/iPHP/core/template/plugins/modifier.upper.php

    <?php
/**
 * template_lite upper modifier plugin
 *
 * Type:     modifier
 * Name:     upper
 * Purpose:  Wrapper for the PHP 'strtoupper' function
 */
function tpl_modifier_upper($string)
{
	return strtoupper($string);
}